home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue50 / IPC / Named Pipes / Delphi / ChildMainFormUnit.dfm / ChildMainFormUnit.txt
Encoding:
Text File  |  1997-02-15  |  799 b   |  40 lines

  1. object Form1: TForm1
  2.   Left = 200
  3.   Top = 108
  4.   BorderIcons = [biSystemMenu, biMinimize]
  5.   BorderStyle = bsSingle
  6.   Caption = 'Named pipe client'
  7.   ClientHeight = 41
  8.   ClientWidth = 427
  9.   Color = clBtnFace
  10.   Font.Charset = DEFAULT_CHARSET
  11.   Font.Color = clWindowText
  12.   Font.Height = -11
  13.   Font.Name = 'MS Sans Serif'
  14.   Font.Style = []
  15.   OldCreateOrder = True
  16.   Position = poDefaultPosOnly
  17.   OnCreate = FormCreate
  18.   OnDestroy = FormDestroy
  19.   PixelsPerInch = 96
  20.   TextHeight = 13
  21.   object Edit1: TEdit
  22.     Left = 8
  23.     Top = 10
  24.     Width = 321
  25.     Height = 21
  26.     TabOrder = 0
  27.     Text = 'Type something in here...'
  28.   end
  29.   object Button1: TButton
  30.     Left = 344
  31.     Top = 8
  32.     Width = 75
  33.     Height = 25
  34.     Caption = '&Send'
  35.     Default = True
  36.     TabOrder = 1
  37.     OnClick = Button1Click
  38.   end
  39. end
  40.